
Planes On
Overview
Planes On is a utility command that turns on (makes visible) the coordinate system planes for the selected component in your Inventor assembly. This command is useful for visualizing reference geometry, aligning components, and inspecting your design. In addition to showing the standard coordinate planes, Planes On also sets a document parameter named ShowPlanes, which can be used in custom rules to control the visibility of additional work planes within the component.
If your component includes a rule that responds to the ShowPlanes parameter, running Planes On will also toggle the visibility of any custom-named work planes according to your rule logic. This allows for advanced automation and customization, ensuring that all the planes you want visible are shown.
How It Works
- Turns on the visibility of the standard coordinate system planes for the selected component.
- Sets the ShowPlanes document parameter to True (if present).
- If a rule is set up to respond to ShowPlanes, custom work planes will also be toggled on.
Usage Instructions
- Select the component in your assembly for which you want to show coordinate system planes.
- Activate the Planes On command from the toolbar or menu.
- The command will turn on the standard coordinate system planes for the selected component.
- If you have custom rules set up for the ShowPlanes parameter, those work planes will also be made visible.
- Review your component to confirm that all desired reference geometry is visible.
Trouble Shooting
- If some planes remain hidden, check for custom rules in your component that may override the default behavior.
- Ensure the ShowPlanes parameter exists if you want to use it for additional logic.
- Review your component rules for any logic that may affect plane visibility.
Examples
- Show all planes in a component: Select the component and run Planes On to show all coordinate system planes.
- Toggle custom work planes: Add a rule to your component to toggle visibility for specific named planes using the ShowPlanes parameter.
- Example rule to toggle work plane visibility. Each time you run Planes On/Planes Off, these work planes along with the standard coordinate system planes will be toggled according to your rules.
- ThisDoc.Document.ComponentDefinition.WorkPlanes(1).Visible = ShowPlanes
- ThisDoc.Document.ComponentDefinition.WorkPlanes("Top of Fitting").Visible = ShowPlanes
- ThisDoc.Document.ComponentDefinition.WorkPlanes("Bottom of Fitting").Visible = ShowPlanes
- ThisDoc.Document.ComponentDefinition.WorkPlanes("Middle of Fitting").Visible = ShowPlanes